home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
i
/
imagefxv2.1a.lha
/
ImageFX
/
Rexx
/
AutoFX
/
EOT_PolarMosaic.ifx.pre
< prev
next >
Wrap
Text File
|
1996-03-02
|
722b
|
37 lines
/*
* EOT_PolarMosaic.ifx.pre
* Written by Thomas Krehbiel
*
* Animated Polar Mosaic Effect.
*
* Inputs:
* Word(Arg(1),1) = Sequence number (?)
* Word(Arg(1),2) = Total number of frames (N)
*
* Returns:
* 0 if successful, non-zero on failure
*
*/
OPTIONS RESULTS
base = 'Autofx_PolarMosaic_'
start = GETCLIP(base||'Start')
end = GETCLIP(base||'End')
IF start = "" THEN start = 4
IF end = "" THEN end = 50
Gadget.1 = 'INTEGER 150 5 50 14 "Starting Amount:"' start
Gadget.2 = 'INTEGER 150 20 50 14 "Ending Amount:"' end
Gadget.3 = 'END'
NewComplexRequest '"Polar Mosaic"' Gadget 250 50
IF rc ~= 0 THEN EXIT rc
CALL SETCLIP(base||'Start', result.1)
CALL SETCLIP(base||'End', result.2)
EXIT